home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
-
- class QueryResult(object):
- '''
- A common class for representing query result in a variety of formats, namely:
-
- xml : as an XML string using the XML result format of the query language
- python: as Python objects
- json : as JSON
- '''
-
- def __init__(self, pythonResult):
- self.rt = pythonResult
-
-
- def serialize(self, format = 'xml'):
- pass
-
-
-